var net/http.http2dataChunkPools
11 uses
net/http (current package)
h2_bundle.go#L1048: var http2dataChunkPools = [...]sync.Pool{
h2_bundle.go#L1059: return http2dataChunkPools[0].Get().(*[1 << 10]byte)[:]
h2_bundle.go#L1061: return http2dataChunkPools[1].Get().(*[2 << 10]byte)[:]
h2_bundle.go#L1063: return http2dataChunkPools[2].Get().(*[4 << 10]byte)[:]
h2_bundle.go#L1065: return http2dataChunkPools[3].Get().(*[8 << 10]byte)[:]
h2_bundle.go#L1067: return http2dataChunkPools[4].Get().(*[16 << 10]byte)[:]
h2_bundle.go#L1074: http2dataChunkPools[0].Put((*[1 << 10]byte)(p))
h2_bundle.go#L1076: http2dataChunkPools[1].Put((*[2 << 10]byte)(p))
h2_bundle.go#L1078: http2dataChunkPools[2].Put((*[4 << 10]byte)(p))
h2_bundle.go#L1080: http2dataChunkPools[3].Put((*[8 << 10]byte)(p))
h2_bundle.go#L1082: http2dataChunkPools[4].Put((*[16 << 10]byte)(p))
![]() |
The pages are generated with Golds v0.7.6. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |